home *** CD-ROM | disk | FTP | other *** search
- echo off
- rem ------------------------------------------------------------
- rem run the program to change the config.sys and autoexec.bat
- rem files and build the batch file (COPYIMF.BAT) to copy all
- rem the files to the right place. make a save copy of the
- rem system files and another working copy for csysupd
- rem -----------------------------------------------------------
- rem gte rid of copyimf.bat if we find it
- rem in case they are re-installing
- if exist copyimf.bat erase copyimf.bat
-
- if not exist config.sys goto error1:
- if not exist autoexec.bat goto error5:
- if not exist csysupd.exe goto error4:
- rem make 2 copies of config.sys and
- rem autoexec.bat: one as backup in
- rem case of problems and another to
- rem be used as input to the csysupd
- rem program -- again, as safeguard
- copy config.sys config.imf
- copy config.sys config1.imf
- copy autoexec.bat autoexec.imf
- copy autoexec.bat auto1.imf
- csysupd
- if errorlevel 1 goto error2
- rem ------------------------------------------------------------
- rem update the config.sys file
- rem ------------------------------------------------------------
- if not exist config2.imf goto config1:
- copy config2.imf config.sys
- erase config1.imf
- erase config2.imf
- goto auto1:
- rem -----------------------------------------------------------------
- rem if config2.imf does not exist, it's because there was no need to
- rem modify it.
- rem -----------------------------------------------------------------
- :config1
- erase config1.imf
- copy config.imf config.sys
- rem ----------------------------------------------------------------
- rem update the autoexec.bat file
- rem ----------------------------------------------------------------
- :auto1
- if not exist auto2.imf goto auto2:
- copy auto2.imf autoexec.bat
- erase auto1.imf
- erase auto2.imf
- goto copyfiles:
- rem ---------------------------------------------------------------
- rem if auto2.imf does not exist it's because there was no need to
- rem update the autoexec.bat file.
- rem --------------------------------------------------------------
- :auto2
- erase auto1.imf
- copy autoexec.imf autoexec.bat
- rem ------------------------------------------------------------
- rem cysupd created copyimf.bat. run it. if it's not there
- rem it's because the user does not need it -- he'll run from
- rem CD-ROM
- rem ------------------------------------------------------------
- :copyfiles
- if not exist copyimf.bat goto finis:
- copyimf
- goto end:
- :finis
- echo Image Folio installation complete.
- echo You must re-boot your computer before running...
- goto end:
- rem ------------------------------------------------------------
- rem error1--the config.sys file is not here
- rem ------------------------------------------------------------
- :error1
- echo Did not find the CONFIG.SYS file on this disk.
- echo To install Image Folio please copy all the files
- echo in the CD-ROM's root directory to your boot disk's
- echo root directory. (Please refer to your DOS manual
- echo to determine which is the boot disk.)
- goto end
- rem ---------------------------------------------------------------
- rem error2--the csysupd program failed. restore the config.sys
- rem and the autoexec.bat
- rem ---------------------------------------------------------------
- :error2
- echo There was a problem with the Image Folio installation. Files could not
- echo be copied to the hard disk.
- copy config.imf config.sys
- copy autoexec.imf autoexec.bat
- if exist config1.imf erase config1.imf
- if exist config2.imf erase config2.imf
- erase config.imf
- erase autoexec.imf
- goto end:
- rem ----------------------------------------------------------------
- rem error4: can't find the csysupd program
- rem ----------------------------------------------------------------
- :error4
- echo File CSYSUPD.EXE needs to be present in the root directory
- echo of your boot disk. Please review your installation instructions.
- goto end:
- rem ------------------------------------------------------------
- rem error5--the autoexec.bat file is not here
- rem ------------------------------------------------------------
- :error5
- echo Did not find the AUTOEXEC.BAT file on this disk.
- echo To install Image Folio please copy all the files
- echo in the CD-ROM's root directory to your boot disk's
- echo root directory. (Please refer to your DOS manual
- echo to determine which is the boot disk.)
- goto end:
- :end